home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / rsxwdk2s.zip / RSXWDK / LIBSRC / SYSDJ / RENAME.C < prev    next >
C/C++ Source or Header  |  1994-10-18  |  177b  |  9 lines

  1. #include <stdio.h>
  2. #include <errno.h>
  3. #include <sys/doscalls.h>
  4.  
  5. int rename (const char *old_name, const char *new_name)
  6. {
  7.   return (dos_rename (old_name, new_name));
  8. }
  9.